home *** CD-ROM | disk | FTP | other *** search
/ EuroCD 3 / EuroCD 3.iso / Programming / SecalDemo / Inc / exec / nodes.inc < prev    next >
Text File  |  1998-06-24  |  650b  |  40 lines

  1. include "inc/exec/types.inc";
  2.  
  3. struct Node is
  4.   ln_Succ:ulong;
  5.   ln_Pred:ulong;
  6.   ln_Type:ubyte;
  7.   ln_Pri:byte;
  8.   ln_Name:ulong;
  9. ;
  10.  
  11. struct MinNode is
  12.   mln_Succ:ulong;
  13.   mln_Pred:ulong;
  14. ;
  15.  
  16. def NT_UNKNOWN = 0;
  17. def NT_TASK = 1;
  18. def NT_INTERRUPT = 2;
  19. def NT_DEVICE = 3;
  20. def NT_MSGPORT = 4;
  21. def NT_MESSAGE = 5;
  22. def NT_FREEMSG = 6;
  23. def NT_REPLYMSG = 7;
  24. def NT_RESOURCE = 8;
  25. def NT_LIBRARY = 9;
  26. def NT_MEMORY = 10;
  27. def NT_SOFTINT = 11;
  28. def NT_FONT = 12;
  29. def NT_PROCESS = 13;
  30. def NT_SEMAPHORE = 14;
  31. def NT_SIGNALSEM = 15;
  32. def NT_BOOTNODE = 16;
  33. def NT_KICKMEM = 17;
  34. def NT_GRAPHICS = 18;
  35. def NT_DEATHMESSAGE = 19;
  36.  
  37. def NT_USER = 254;
  38. def NT_EXTENDED = 255;
  39.  
  40.